word-break 和 overflow-wrap
· 阅读需 6 分钟
主要描述浏览器中文本换行,以及对比 word-break
和 overflow-wrap
这两个CSS属性在防止文本溢出上的效果.
这里主要讨论的是英文的换行
浏览器中的内容换行是如何发生的
浏览器在允许的断点处执行内容换行,以最大程度地减少内容溢出。
不同语言的书写系统,默认的换行是不一样的,这里主要是看英文中的默认换行。
实时编辑器
function TextOverflow() { const wrapStyles = { // 覆盖系统样式,还原到默认属性 overflowWrap: 'normal', wordBreak: 'normal', } const contentStyles = { width: '200px', border: '1px solid #000', marginTop: '20px', } // 为了测试,手动在中间添加一些常见的符号 const createText = (split = '') => { return `is time to reeeeeeeeeeeeeeee${split}eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeest` } return ( <div style={wrapStyles}> <div style={contentStyles}>{createText('')}</div> <div style={contentStyles}>{createText('.')}</div> <div style={contentStyles}>{createText('+')}</div> <div style={contentStyles}>{createText(' ')}</div> <div style={contentStyles}>{createText('-')}</div> </div> ) }
结果
Loading...
可以看到,英文语言系统中,空格 和 "-" 都是默认会换行的。
下面主要对比 word-break
和 overflow-wrap
在防止文本溢出上的效果
word-break
word-break
指定了怎样在单词内断行。有以下几个可选值
- normal (默认)
- break-all: 可在任意字符间断行
- keep-all: 文本不断行
- break-word (已废 弃)
实时编辑器
function TextOverflow() { const wrapStyles = { // 覆盖系统样式,还原到默认属性 overflowWrap: 'normal', wordBreak: 'normal', } const createContentStyles = (wordBreak = 'normal') => { return { width: '200px', border: '1px solid #000', marginBottom: '20px', wordBreak, } } // 为了测试,手动在中间添加一些常见的符号 const createText = (split = '') => { return `is time to reeeeeeeeeeeeeeee${split}eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeest` } return ( <div style={wrapStyles}> <div>normal:</div> <div style={createContentStyles('normal')}>{createText()}</div> <div>break-all:</div> <div style={createContentStyles('break-all')}>{createText()}</div> <div>keep-all:</div> <div style={createContentStyles('keep-all')}>{createText()}</div> </div> ) }
结果
Loading...